home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / mail / mh / contrib / multimedia / mhweather.shar / Makefile < prev    next >
Makefile  |  1993-03-15  |  1KB  |  43 lines

  1. # Makefile for MH-MIME weather stuff
  2. # Author: Jerry Sweet <jsweet@irvine.com>
  3. # $Header: /t/users/jsweet/src/mh-front/RCS/Makefile.weather,v 1.1 1992/11/14 02:06:21 jsweet Exp jsweet $
  4.  
  5. # Define this if make doesn't know about environment variables
  6. # HOME=/q2/uh/jsweet
  7.  
  8. # N.B.: If you modify this, keep the trailing slash (/)!
  9. # This is where the programs get installed.
  10. BINDIR=$(HOME)/bin/
  11.  
  12. # These rules prevent make from going berserk with .l files:
  13. .DEFAULT:
  14. .SUFFIXES:
  15.  
  16. BINSTUFF=$(BINDIR)mail.weather.ext $(BINDIR)mhnsend
  17.  
  18. STUFF=Makefile README mail.weather.ext mhnsend mail.weather.ext.l
  19.  
  20. install: $(BINSTUFF)
  21.  
  22. uushar: mhweather.shar.uu
  23.  
  24. shar: mhweather.shar
  25.  
  26. mhweather.shar: $(STUFF)
  27.     mkshar -h mhweather.shar $(STUFF)
  28.  
  29. mhweather.shar.uu: mhweather.shar
  30.     uuencode mhweather.shar <mhweather.shar >mhweather.shar.uu
  31.  
  32. $(BINDIR)mail.weather.ext: mail.weather.ext
  33.     -rm -f $(BINDIR)mail.weather.ext
  34.     cp mail.weather.ext $(BINDIR)
  35.     chmod 555 $(BINDIR)mail.weather.ext
  36.  
  37. $(BINDIR)mhnsend: mhnsend
  38.     -rm -f $(BINDIR)mhnsend
  39.     cp mhnsend $(BINDIR)
  40.     chmod 555 $(BINDIR)mhnsend
  41.  
  42.  
  43.